home *** CD-ROM | disk | FTP | other *** search
INI File | 2006-09-13 | 1.0 KB | 60 lines |
- [SUBJECT]
- Description=Gradual-Highlight Image Script
- ImageIndex=1
- Folder=Graphical Effects
-
-
- [HEAD_TEXT]
- ;<script language="JavaScript1.2">
- ;
- ;/*
- ;Gradual-Highlight Image Script-
- ;⌐ Dynamic Drive (www.dynamicdrive.com)
- ;For full source code, installation instructions,
- ;100's more DHTML scripts, and Terms Of
- ;Use, visit dynamicdrive.com
- ;*/
- ;
- ;function high(which2){
- ;theobject=which2;
- ;highlighting=setInterval("highlightit(theobject)",`interval`);
- ;}
- ;function low(which2){
- ;clearInterval(highlighting);
- ;which2.filters.alpha.opacity=20;
- ;}
- ;
- ;function highlightit(cur2){
- ;if (cur2.filters.alpha.opacity<100)
- ;cur2.filters.alpha.opacity+=5;
- ;else if (window.highlighting)
- ;clearInterval(highlighting);
- ;}
- ;
- ;</script>
- ;
-
-
- [BODY_TEXT]
- ;<a href="`linked_page`"><img alt="" src="`source_image`" border="0"
- ;style="filter:alpha(opacity=40)" onMouseover="high(this)"
- ;onMouseout="low(this)"></a>
-
-
-
-
-
- [`interval`]
- Kind=N
- Value=50
-
- [`linked_page`]
- Kind=U
- Value=whatever.htm
-
- [`source_image`]
- Kind=U
- Value=mygif.gif
-
-
-